home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / liferea / xslt / vfolder.xml.in < prev    next >
Encoding:
Extensible Markup Language  |  2010-07-19  |  1.7 KB  |  60 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <!--
  4. /**
  5.  * Rendering stylesheet for Liferea (search folder description view)
  6.  *
  7.  * Copyright (C) 2006 Lars Lindner <lars.lindner@gmx.net>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version. 
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  22.  */
  23. --> 
  24.  
  25. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
  26.                 xmlns="http://www.w3.org/1999/xhtml">
  27.  
  28. <xsl:output method="xml" version="1.0" indent="yes"/>
  29.  
  30. <xsl:template match="/node">
  31. <html xmlns="http://www.w3.org/1999/xhtml">
  32. <head>
  33. <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
  34. ##STYLE_INSERT##
  35. </head>
  36. <body>
  37.  
  38. <table class="feedhead" cellspacing="0">
  39. <tr>
  40.   <td valign="middle" class="headleft">
  41.     <b><_span>Search Folder:</_span></b>
  42.   </td>
  43.   <td width="100%" valign="middle" class="headright">
  44.      <b><xsl:value-of select="title"/></b>
  45.   </td>
  46. </tr>
  47. </table>
  48.  
  49. <div class='content'>
  50.   <p>
  51.    <b><xsl:value-of select="unreadCount"/></b>
  52.    <_span>unread headlines</_span> 
  53.   </p>
  54. </div>
  55.  
  56. </body>
  57. </html>
  58. </xsl:template>
  59. </xsl:stylesheet>
  60.